Socket
Socket
Sign inDemoInstall

@ntegral/lulu

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ntegral/lulu

Lulu Print API Client


Version published
Weekly downloads
10
decreased by-77.27%
Maintainers
1
Weekly downloads
 
Created
Source

@ntegral/lulu

The client for Lulu Print API that allows you to use Lulu as a production and fulfillment network. The client provides a wrapper around the Lulu Print API restful API.

Table Of Contents

  • About
  • Prerequisites
  • Installation
  • Contributing
  • License
  • Acknowledgements

About

The client for Lulu Print API that allows you to use Lulu as a production and fulfillment network. The client provides a wrapper around the Lulu Print API restful API.

Prerequisites

Installation

npm install --save @ntegral/lulu

Getting Started

The simplest way to use @ntegral/lulu is as follows:

import { LuluService } from "@ntegral/lulu";

let ls = new LuluService({
    client_key: '5ec56f60-3df5-484a-86a4-555xxx555dsx',
    client_secret: 'b1050b59-61e6-4053-9731-669cd444xxx', //3
    environment: 'development',
});

ls.init();

//list the print shipping options method //
ls.shippingOptions.list({ page: 1, page_size: 100, iso_country_code: 'US' }).then((result) => {
    console.log('resulting shipping options', result);
}).catch((err) => {
    console.log('error occurred', err);
});

Contributing

I would greatly appreciate any contributions to make this project better. Please make sure to follow the below guidelines before getting your hands dirty.

  1. Fork the repository
  2. Create your branch (git checkout -b my-branch)
  3. Commit any changes to your branch
  4. Push your changes to your remote branch
  5. Open a pull request

License

Distributed under the MIT License. See LICENSE for more information.

Acknowledgements

Copyright © 2019 Ntegral Inc.

Keywords

FAQs

Package last updated on 30 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc